home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / source / divaplug.cpt / VideoShop Plug-In Kit 1.0 / How To Build < prev    next >
Encoding:
Text File  |  1992-05-06  |  808 b   |  26 lines

  1. # To build the C version of the sample filter use:
  2. c -r -mc68020 "SampleFilt.c"
  3. Link -rt Vflt=0 -m FILTERENTRYPOINT    -sg 'Sample Filter╔' ╢
  4.     "SampleFilt.c.o"    ╢
  5.     -o "Sample Filter" 
  6.  
  7. # To build the C version of the sample transition use:
  8. c -b2 -r -mc68020 "SampleXsn.c"
  9. Link -rt Vxsn=0 -m XSNENTRYPOINT -sg 'Sample Transition╔' ╢
  10.     "SampleXsn.c.o"    ╢
  11.     -o "Sample Transition"
  12.  
  13. # To build the Pascal version of the sample filter use:
  14. pascal -mc68020 "SampleFilt.p"
  15. Link -rt Vflt=0 -m FILTERENTRYPOINT -sg 'Sample Filter╔'    ╢
  16.     "SampleFilt.p.o"    ╢
  17.     "{Libraries}"Interface.o    ╢
  18.     -o "Sample Filter"
  19.  
  20. # To build the Pascal version of the sample transition use:
  21. pascal -mc68020 "SampleXsn.p"
  22. Link -rt Vxsn=0 -m XSNENTRYPOINT -sg 'Sample Transition╔' ╢
  23.     "SampleXsn.p.o"    ╢
  24.     "{Libraries}"Interface.o    ╢
  25.     -o "Sample Transition"
  26.